home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / texts / amyfaqg.lha / AmigaFAQ / programmer / SetAttrs.c < prev    next >
C/C++ Source or Header  |  1994-07-28  |  302b  |  14 lines

  1. #include <clib/intuition_protos.h>
  2. #ifdef AZTEC_C
  3. #include <pragmas/intuition_lib.h>
  4. #endif
  5. #if defined(__SASC)  ||  defined(_DCC)  ||  defined(__MAXON__)
  6. #include <pragmas/intuition_pragmas.h>
  7. #endif
  8.  
  9.  
  10. ULONG SetAttrs(APTR Object, Tag tag, ...)
  11.  
  12. { return(SetAttrsA(Object, (struct TagItem *) &tag));
  13. }
  14.